home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 4 / Amiga Tools 4.iso / tools / netzwerk / hlink2 / install_hlink < prev    next >
Text File  |  1996-02-26  |  2KB  |  127 lines

  1. (message "Handy Link v2.0 Installation  \n"
  2.    "\n"
  3.    "This version of HLink is FREEWARE !\n\n"
  4.    "<< Keep The Amiga Spirit Alive >>\n\n"
  5.    " Greatings from : \n"
  6.    "\n"
  7.    "       Michael D.P. de Clerck\n"
  8.    "       Increased Development.\n"
  9.    "       August 1995 Rotterdam \n"
  10.    "\n"
  11. )
  12.  
  13.  
  14.  
  15. ; ask where to install HLink
  16. (set vc-dest
  17.    (askdir
  18.      (prompt "Please select the Directory where you would like to "
  19.              "install HLink 2.0. I won't make a new directory ! "
  20.      )
  21.      (help @askdir-help)
  22.      (default @default-dest)
  23.    )
  24. )
  25. (set @default-dest vc-dest)
  26.  
  27.  
  28.  
  29. (
  30.    (working "Installing HLink 2.0 Program")
  31.    (copyfiles
  32.      (prompt "")
  33.      (help @copyfiles-help)
  34.      (source "HLink")
  35.      (dest @default-dest)
  36.      (infos)
  37.    )
  38. )
  39.  
  40.  
  41. (copyfiles
  42.    (prompt "Would you like to install the AmigaGuide documentation?")
  43.    (help @copyfiles-help)
  44.    (source "HLink.Guide")
  45.    (dest @default-dest)
  46.    (infos)
  47.    (confirm)
  48. )
  49.  
  50.  
  51.  
  52.  
  53.  
  54. ; ask where to install the NetScripts examples
  55. (set nt-dest
  56.    (askdir
  57.      (prompt "Please select the Directory where you would like to "
  58.              "install the Netscript examples. "
  59.      )
  60.      (help @askdir-help)
  61.      (default @default-dest)
  62.    )
  63. )
  64. (set @script-dest nt-dest)
  65.  
  66.  
  67. (
  68.   (working "Installing NetScripts examples")
  69.   (copyfiles
  70.     (source "NetScripts")
  71.     (dest @script-dest)
  72.     (all)
  73.   )
  74. )
  75.  
  76.  
  77.  
  78.  
  79.  
  80. (
  81.    (working "Copying HLink configuration to S:")
  82.    (run "c:copy HLink.Config S:HLink.Config")
  83. )
  84.  
  85.  
  86.  
  87.  
  88. (
  89.    (working "Adding lines to S:User-startup sequence")
  90.    (run "c:type HLink.User-startup >> S:User-startup")
  91. )
  92.  
  93.  
  94.  
  95. (
  96.    (working "Adding lines to S:Shell-startup sequence")
  97.    (run "c:type HLink.Shell-Startup >> S:Shell-startup")
  98. )
  99.  
  100.  
  101. (
  102.    (working "Copying Join command to C:Join")
  103.    (run "c:copy Join C:Join")
  104. )
  105.  
  106.  
  107.  
  108. (message "Handy Link v2.0 Installation complete\n"
  109.    "\n"
  110.    "Make sure that the Serial.device exists\n"
  111.    "in the Devs: directory.\n\n"
  112.  
  113.    "Now check the S:User-Startup file for the\n"
  114.    "right assigns.\n\n"
  115.  
  116.    "Now reboot or execute the user-startup file\n"
  117.    "and open a new shell.\n\n"
  118.  
  119.    "HLink can now be started, see documentation\n"
  120.    "for further support !\n"
  121.    "\n"
  122. )
  123.  
  124.  
  125.  
  126. (exit)
  127.